home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / Syn Text Editor 2.1.0.46 / synsetup-2.1.0.46.exe / {app} / js.dci < prev    next >
INI File  |  2002-07-19  |  1KB  |  108 lines

  1. [switchs | switch statement]
  2. switch (|)
  3. {
  4.   case : ;
  5.   break;
  6.   case : ;
  7.   break;
  8. }
  9.  
  10. [switche | switch statement (with default)]
  11. switch (|)
  12. {
  13.   case : ;
  14.   break;
  15.   case : ;
  16.   break;
  17.   default: ;
  18. }
  19.  
  20. [fors | for (no opening/closing braces)]
  21. for (|; ;)
  22.  
  23. [forb | for statement]
  24. for (|; ;)
  25. {
  26.  
  27. }
  28.  
  29. [for | for statement]
  30. for (int i = 0; i <|; i++)
  31. {
  32. }
  33.  
  34. [funcp | Function declaration with Parenthesis]
  35. function |()
  36. {
  37.  
  38. }
  39.  
  40. [func | Function Declaration]
  41. function | {
  42.  
  43. }
  44.  
  45. [ifs | if (no opening/closing braces)]
  46. if (|)
  47.  
  48. [ifb | if statement]
  49. if (|)
  50. {
  51.  
  52. }
  53.  
  54. [ife | if (no opening/closing braces) else (no opening/closing braces)]
  55. if (|)
  56.  
  57. else
  58.  
  59. [ifeb | if else]
  60. if (|)
  61. {
  62.  
  63. }
  64. else
  65. {
  66.  
  67. }
  68.  
  69. [trye | try catch]
  70. try
  71. {
  72.   |
  73. }
  74. catch()
  75. {
  76. }
  77.  
  78. [trycf | try catch finally]
  79. try
  80. {
  81.   |
  82. }
  83. catch()
  84. {
  85. }
  86. finally
  87. {
  88. }
  89.  
  90. [whileb | while statement]
  91. while (|)
  92. {
  93.  
  94. }
  95.  
  96. [whiles | while (no opening/closing braces)]
  97. while (|)
  98.  
  99. [dow | Do While Statement]
  100. do
  101.   |
  102. while ();
  103.  
  104. [forin | For In Statement]
  105. for (| in)
  106.  
  107.  
  108.